html {
    scroll-behavior: smooth;
  }

* {
    /* overflow: auto; */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

* {
    /*border: 1px solid red !important;*/
}


html {
    scroll-behavior: smooth;
  }


body {
    /* background-image: url("bkgd.jpg"); */
    background-size: contain;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#nav_wrapper
{
    display: flex;
    justify-content: center;
    width: 100%;
}


#nav {
    width: 100%;
    height: 3em;
    margin: 0;
    padding: 0;
    border: 0;
    /* position: fixed; */
    background-color: #333;  
}

#nav > ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    display: inline;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
}

#nav  li
{
    float: left;
    
}

#nav li  a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  #nav  li a:hover {
    background-color: #111;
  }


#wrapper{
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
}



#products{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 5em;
    margin-top: 5em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20;
}

.product_list{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.product_wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;

}

.model_title{
    text-align: center;
}

.description{
    padding: 3%;
}

.product_image {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product_image > img{
    width: 90%;
}

.product_features{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.product_features > #features{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 0.5em; 
    text-align: center;
    justify-content: center;
}


.product_features hr{
    margin: auto;
    width: 80%;
    border-top: 0.05em solid #8c8b8b;
    color: white;
}

footer {

    width: 100%;
    min-height: 10em;
    margin: 0;
    background-color: darkgrey;
    font-size: 20px;
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer {

    width: auto;
    min-height: 10em;
    margin: 0;

}

footer p {
    margin: 2%;
}



@media only screen and (max-width: 600px) {

    .product_wrapper{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    
    }

    .product_image {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        padding: 5%;
    }

    .product_features{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        padding: 5%;
    }
}